Net::Blogger::Engine::Slash::slashcode

aaron of montreal on 2002-05-17T22:00:19

  my $blogger = Net::Blogger->new(engine=>"slash",debug=>1);

$blogger->Username(2785); $blogger->Password("******"); $blogger->Proxy("http://use.perl.org/journal.pl"); $blogger->Uri("http://use.perl.org/Slash/Journal/SOAP");

my $post = "Net::Blogger::Engine::Slash::slashcode\nhello world, part two"; my $pid = $blogger->newPost(postbody=>\$post);

my $post = $blogger->getPost(postid=>$pid); my $body = $post->{'content'} ."\nquack quack quack";

$blogger->editPost( postid => $pid, postbody => $body, );

# Why is this going to call blogger.deletePost ?!?! # What have I done to anger the symbol table...

$blogger->deletePost(postid=>$pid);